2025 Method
Changes 0
M

HermiteSurface.Create

Description:
Create a Hermite surface using a net of 3D points as input. Specify periodicity in U and V direction.
Remarks:
Points form a net of nU * nV (less one each if periodic) 3D points.
Overloads (2):
Create(Int32,Int32,IList[XYZ],Boolean,Boolean)
public static HermiteSurface Create(
	int nU,
	int nV,
	IList<XYZ> points,
	bool periodicU,
	bool periodicV
)
  • nU
    Number of points in U direction.
  • nV
    Number of points in V direction.
  • points
    Array of points. Must contain nU*nV points.
  • periodicU
    Periodicity in U direction
  • periodicV
    Periodicity in V direction
Return Value HermiteSurface A Hermite surface object created from input data.